home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zfdecode.c < prev    next >
C/C++ Source or Header  |  1996-09-16  |  10KB  |  346 lines

  1. /* Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfdecode.c */
  20. /* Additional decoding filter creation */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "gsstruct.h"
  26. #include "ialloc.h"
  27. #include "idict.h"
  28. #include "idparam.h"
  29. #include "store.h"
  30. #include "stream.h"        /* for setting is_temp */
  31. #include "strimpl.h"
  32. #include "sfilter.h"
  33. #include "sa85x.h"
  34. #include "scfx.h"
  35. #include "scf.h"
  36. #include "slzwx.h"
  37. #include "spdiffx.h"
  38. #include "spngpx.h"
  39. #include "ifilter.h"
  40.  
  41. /* Import the Level 2 scanner extensions. */
  42. extern const stream_template _ds *scan_ascii85_template;
  43.  
  44. /* Initialize the Level 2 scanner for ASCII85 strings. */
  45. private void
  46. zfdecode_init(void)
  47. {    scan_ascii85_template = &s_A85D_template;
  48. }
  49.  
  50. /* ------ ASCII85 filters ------ */
  51.  
  52. /* We include both encoding and decoding filters here, */
  53. /* because it would be a nuisance to separate them. */
  54.  
  55. /* <target> ASCII85Encode/filter <file> */
  56. /* <target> <dict_ignored> ASCII85Encode/filter <file> */
  57. private int
  58. zA85E(os_ptr op)
  59. {    return filter_write_simple(op, &s_A85E_template);
  60. }
  61.  
  62. /* <source> ASCII85Decode/filter <file> */
  63. /* <source> <dict_ignored> ASCII85Decode/filter <file> */
  64. private int
  65. zA85D(os_ptr op)
  66. {    return filter_read_simple(op, &s_A85D_template);
  67. }
  68.  
  69. /* ------ CCITTFaxDecode filter ------ */
  70.  
  71. /* Define a limit on the Rows parameter, close to max_int. */
  72. #define cf_max_height 32000
  73.  
  74. /* Common setup for encoding and decoding filters. */
  75. int
  76. zcf_setup(os_ptr op, stream_CF_state *pcfs)
  77. {    int code;
  78.     if ( (code = dict_bool_param(op, "Uncompressed", false,
  79.                      &pcfs->Uncompressed)) < 0 ||
  80.          (code = dict_int_param(op, "K", -cf_max_height, cf_max_height, 0,
  81.                     &pcfs->K)) < 0 ||
  82.          (code = dict_bool_param(op, "EndOfLine", false,
  83.                      &pcfs->EndOfLine)) < 0 ||
  84.          (code = dict_bool_param(op, "EncodedByteAlign", false,
  85.                      &pcfs->EncodedByteAlign)) < 0 ||
  86.          (code = dict_int_param(op, "Columns", 0, cfe_max_width, 1728,
  87.                     &pcfs->Columns)) < 0 ||
  88.          (code = dict_int_param(op, "Rows", 0, cf_max_height, 0,
  89.                     &pcfs->Rows)) < 0 ||
  90.          (code = dict_bool_param(op, "EndOfBlock", true,
  91.                      &pcfs->EndOfBlock)) < 0 ||
  92.          (code = dict_bool_param(op, "BlackIs1", false,
  93.                      &pcfs->BlackIs1)) < 0 ||
  94.          (code = dict_int_param(op, "DamagedRowsBeforeError", 0,
  95.                     cf_max_height, 0,
  96.                     &pcfs->DamagedRowsBeforeError)) < 0 ||
  97.          (code = dict_bool_param(op, "FirstBitLowOrder", false,
  98.                      &pcfs->FirstBitLowOrder)) < 0 ||
  99.          (code = dict_int_param(op, "DecodedByteAlign", 1, 16, 1,
  100.                     &pcfs->DecodedByteAlign)) < 0
  101.        )
  102.         return code;
  103.     if ( pcfs->DecodedByteAlign & (pcfs->DecodedByteAlign - 1) )
  104.       return_error(e_rangecheck);        /* not a power of 2 */
  105.     return 0;
  106. }
  107.  
  108. /* <source> <dict> CCITTFaxDecode/filter <file> */
  109. /* <source> CCITTFaxDecode/filter <file> */
  110. private int
  111. zCFD(os_ptr op)
  112. {    os_ptr dop;
  113.     int npop;
  114.     stream_CFD_state cfs;
  115.     int code;
  116.  
  117.     if ( r_has_type(op, t_dictionary) )
  118.       {    check_dict_read(*op);
  119.         dop = op, npop = 1;
  120.       }
  121.     else
  122.       dop = 0, npop = 0;
  123.     code = zcf_setup(dop, (stream_CF_state *)&cfs);
  124.     if ( code < 0 )
  125.       return code;
  126.     return filter_read(op, npop, &s_CFD_template, (stream_state *)&cfs, 0);
  127. }
  128.  
  129. /* ------ Common setup for possibly pixel-oriented decoding filters ------ */
  130.  
  131. /* Forward declarations */
  132. int zpd_setup(P2(os_ptr op, stream_PDiff_state *ppds));
  133. int zpp_setup(P2(os_ptr op, stream_PNGP_state *ppps));
  134.  
  135. int
  136. filter_read_predictor(os_ptr op, int npop, const stream_template *template,
  137.   stream_state *st)
  138. {    int predictor, code;
  139.     stream_PDiff_state pds;
  140.     stream_PNGP_state pps;
  141.  
  142.     if ( r_has_type(op, t_dictionary) )
  143.       { if ( (code = dict_int_param(op, "Predictor", 0, 15, 1, &predictor)) < 0 )
  144.           return code;
  145.         switch ( predictor )
  146.           {
  147.           case 0:        /* identity */
  148.         predictor = 1;
  149.           case 1:        /* identity */
  150.         break;
  151.           case 2:        /* componentwise horizontal differencing */
  152.         code = zpd_setup(op, &pds);
  153.         break;
  154.           case 10: case 11: case 12: case 13: case 14: case 15:
  155.                 /* PNG prediction */
  156.         code = zpp_setup(op, &pps);
  157.         break;
  158.           default:
  159.         return_error(e_rangecheck);
  160.           }
  161.         if ( code < 0 )
  162.           return code;
  163.       }
  164.     else
  165.       predictor = 1;
  166.     if ( predictor == 1 )
  167.       return filter_read(op, npop, template, st, 0);
  168.     { /* We need to cascade filters. */
  169.       ref rsource, rdict, rfd;
  170.       int code;
  171.  
  172.       /* Save the operands, just in case. */
  173.       ref_assign(&rsource, op - 1);
  174.       ref_assign(&rdict, op);
  175.       code = filter_read(op, 1, template, st, 0);
  176.       if ( code < 0 )
  177.         return code;
  178.       /* filter_read changed osp.... */
  179.       op = osp;
  180.       ref_assign(&rfd, op);
  181.       code =
  182.         (predictor == 2 ?
  183.          filter_read(op, 0, &s_PDiffD_template, (stream_state *)&pds, 0) :
  184.          filter_read(op, 0, &s_PNGPD_template, (stream_state *)&pps, 0));
  185.       if ( code < 0 )
  186.         { /* Restore the operands.  Don't bother trying to clean up */
  187.           /* the first stream. */
  188.           osp = ++op;
  189.           ref_assign(op - 1, &rsource);
  190.           ref_assign(op, &rdict);
  191.           return code;
  192.         }
  193.       filter_mark_temp(&rfd, 2);    /* Mark the decompression stream as temporary. */
  194.       return code;
  195.     }
  196. }
  197.  
  198. /* ------ Generalized LZW/GIF decoding filter ------ */
  199.  
  200. /* Common setup for encoding and decoding filters. */
  201. int
  202. zlz_setup(os_ptr op, stream_LZW_state *plzs)
  203. {    int code;
  204.     const ref *dop;
  205.     int npop;
  206.  
  207.     if ( r_has_type(op, t_dictionary) )
  208.       {    check_dict_read(*op);
  209.         dop = op, npop = 1;
  210.       }
  211.     else
  212.       dop = 0, npop = 0;
  213.     if (         /* Following are not PostScript standard */
  214.          (code = dict_int_param(dop, "EarlyChange", 0, 1, 1,
  215.                     &plzs->EarlyChange)) < 0 ||
  216.          (code = dict_int_param(dop, "InitialCodeLength", 2, 11, 8,
  217.                     &plzs->InitialCodeLength)) < 0 ||
  218.          (code = dict_bool_param(dop, "FirstBitLowOrder", false,
  219.                      &plzs->FirstBitLowOrder)) < 0 ||
  220.          (code = dict_bool_param(dop, "BlockData", false,
  221.                      &plzs->BlockData)) < 0
  222.        )
  223.       return code;
  224.     return npop;
  225. }
  226.  
  227. /* <source> LZWDecode/filter <file> */
  228. /* <source> <dict> LZWDecode/filter <file> */
  229. private int
  230. zLZWD(os_ptr op)
  231. {    stream_LZW_state lzs;
  232.     int code = zlz_setup(op, &lzs);
  233.  
  234.     if ( code < 0 )
  235.       return code;
  236.     return filter_read_predictor(op, code, &s_LZWD_template,
  237.                      (stream_state *)&lzs);
  238. }
  239.  
  240. /* ------ Color differencing filters ------ */
  241.  
  242. /* We include both encoding and decoding filters here, */
  243. /* because it would be a nuisance to separate them. */
  244.  
  245. /* Common setup for encoding and decoding filters. */
  246. int
  247. zpd_setup(os_ptr op, stream_PDiff_state *ppds)
  248. {    int code, bpc;
  249.  
  250.     check_type(*op, t_dictionary);
  251.     check_dict_read(*op);
  252.     if ( (code = dict_int_param(op, "Colors", 1, 4, 1,
  253.                     &ppds->Colors)) < 0 ||
  254.          (code = dict_int_param(op, "BitsPerComponent", 1, 8, 8,
  255.                     &bpc)) < 0 ||         
  256.          (bpc & (bpc - 1)) != 0 ||
  257.          (code = dict_int_param(op, "Columns", 1, max_int, 1,
  258.                     &ppds->Columns)) < 0
  259.        )
  260.       return (code < 0 ? code : gs_note_error(e_rangecheck));
  261.     ppds->BitsPerComponent = bpc;
  262.     return 0;
  263. }
  264.  
  265. /* <target> <dict> PixelDifferenceEncode/filter <file> */
  266. private int
  267. zPDiffE(os_ptr op)
  268. {    stream_PDiff_state pds;
  269.     int code = zpd_setup(op, &pds);
  270.  
  271.     if ( code < 0 )
  272.       return code;
  273.     return filter_write(op, 1, &s_PDiffE_template, (stream_state *)&pds, 0);
  274. }
  275.  
  276. /* <source> <dict> PixelDifferenceDecode/filter <file> */
  277. private int
  278. zPDiffD(os_ptr op)
  279. {    stream_PDiff_state pds;
  280.     int code = zpd_setup(op, &pds);
  281.  
  282.     if ( code < 0 )
  283.       return code;
  284.     return filter_read(op, 1, &s_PDiffD_template, (stream_state *)&pds, 0);
  285. }
  286.  
  287. /* ------ PNG pixel predictor filters ------ */
  288.  
  289. /* Common setup for encoding and decoding filters. */
  290. int
  291. zpp_setup(os_ptr op, stream_PNGP_state *ppps)
  292. {    int code, bpc;
  293.  
  294.     check_type(*op, t_dictionary);
  295.     check_dict_read(*op);
  296.     if ( (code = dict_int_param(op, "Colors", 1, 16, 1,
  297.                     &ppps->Colors)) < 0 ||
  298.          (code = dict_int_param(op, "BitsPerComponent", 1, 16, 8,
  299.                     &bpc)) < 0 ||         
  300.          (bpc & (bpc - 1)) != 0 ||
  301.          (code = dict_uint_param(op, "Columns", 1, max_uint, 1,
  302.                     &ppps->Columns)) < 0 ||
  303.          (code = dict_int_param(op, "Predictor", 10, 15, 15,
  304.                     &ppps->Predictor)) < 0
  305.        )
  306.       return (code < 0 ? code : gs_note_error(e_rangecheck));
  307.     ppps->BitsPerComponent = bpc;
  308.     return 0;
  309. }
  310.  
  311. /* <target> <dict> PNGPredictorEncode/filter <file> */
  312. private int
  313. zPNGPE(os_ptr op)
  314. {    stream_PNGP_state pps;
  315.     int code = zpp_setup(op, &pps);
  316.  
  317.     if ( code < 0 )
  318.       return code;
  319.     return filter_write(op, 1, &s_PNGPE_template, (stream_state *)&pps, 0);
  320. }
  321.  
  322. /* <source> <dict> PNGPredictorDecode/filter <file> */
  323. private int
  324. zPNGPD(os_ptr op)
  325. {    stream_PNGP_state pps;
  326.     int code = zpp_setup(op, &pps);
  327.  
  328.     if ( code < 0 )
  329.       return code;
  330.     return filter_read(op, 1, &s_PNGPD_template, (stream_state *)&pps, 0);
  331. }
  332.  
  333. /* ---------------- Initialization procedure ---------------- */
  334.  
  335. BEGIN_OP_DEFS(zfdecode_op_defs) {
  336.         op_def_begin_filter(),
  337.     {"1ASCII85Encode", zA85E},
  338.     {"1ASCII85Decode", zA85D},
  339.     {"2CCITTFaxDecode", zCFD},
  340.     {"1LZWDecode", zLZWD},
  341.     {"2PixelDifferenceDecode", zPDiffD},
  342.     {"2PixelDifferenceEncode", zPDiffE},
  343.     {"2PNGPredictorDecode", zPNGPD},
  344.     {"2PNGPredictorEncode", zPNGPE},
  345. END_OP_DEFS(zfdecode_init) }
  346.